Skip to content

Commit

Permalink
CLean some file
Browse files Browse the repository at this point in the history
  • Loading branch information
indramahkota committed Aug 13, 2022
1 parent 1ab2062 commit cdb675b
Show file tree
Hide file tree
Showing 4 changed files with 152 additions and 154 deletions.

This file was deleted.

76 changes: 76 additions & 0 deletions kotlin fundamentals/.ipynb_checkpoints/List-checkpoint.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 60,
"id": "89f85ee0",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[Andi, Ani]"
]
},
"execution_count": 60,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"var users = listOf(\"Andi\", \"Ani\")\n",
"users"
]
},
{
"cell_type": "code",
"execution_count": 63,
"id": "702772a3",
"metadata": {},
"outputs": [],
"source": [
"users += \"Safwany\""
]
},
{
"cell_type": "code",
"execution_count": 62,
"id": "47b3bc6e",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[Andi, Ani, Safwany, Safwany]"
]
},
"execution_count": 62,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"// Returns a list containing all elements of the original collection and then the given element.\n",
"users.plus(\"Safwany\")"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Kotlin",
"language": "kotlin",
"name": "kotlin"
},
"language_info": {
"codemirror_mode": "text/x-kotlin",
"file_extension": ".kt",
"mimetype": "text/x-kotlin",
"name": "kotlin",
"nbconvert_exporter": "",
"pygments_lexer": "kotlin",
"version": "1.6.20-dev-6372"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
77 changes: 0 additions & 77 deletions kotlin fundamentals/Ceate commit.ipynb

This file was deleted.

76 changes: 76 additions & 0 deletions kotlin fundamentals/List.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 70,
"id": "89f85ee0",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[Andi, Ani]"
]
},
"execution_count": 70,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"var users = listOf(\"Andi\", \"Ani\")\n",
"users"
]
},
{
"cell_type": "code",
"execution_count": 68,
"id": "702772a3",
"metadata": {},
"outputs": [],
"source": [
"users += \"Safwany\""
]
},
{
"cell_type": "code",
"execution_count": 71,
"id": "47b3bc6e",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[Andi, Ani, Safwany]"
]
},
"execution_count": 71,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"// Returns a list containing all elements of the original collection and then the given element.\n",
"users.plus(\"Safwany\")"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Kotlin",
"language": "kotlin",
"name": "kotlin"
},
"language_info": {
"codemirror_mode": "text/x-kotlin",
"file_extension": ".kt",
"mimetype": "text/x-kotlin",
"name": "kotlin",
"nbconvert_exporter": "",
"pygments_lexer": "kotlin",
"version": "1.6.20-dev-6372"
}
},
"nbformat": 4,
"nbformat_minor": 5
}

0 comments on commit cdb675b

Please sign in to comment.