Skip to content

Commit 148e066

Browse files
committed
daily checkin - 1
1 parent c224898 commit 148e066

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

leetcode_kuro_RnD.ipynb

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8606,6 +8606,16 @@
86068606
"print(int(x**0.5))"
86078607
]
86088608
},
8609+
{
8610+
"cell_type": "code",
8611+
"execution_count": null,
8612+
"metadata": {},
8613+
"outputs": [],
8614+
"source": [
8615+
"# https://leetcode.com/problems/climbing-stairs/\n",
8616+
"\n"
8617+
]
8618+
},
86098619
{
86108620
"cell_type": "code",
86118621
"execution_count": 112,
@@ -8706,6 +8716,34 @@
87068716
"\n",
87078717
"print(\"i am offline and i have to wait till the internet connection is back!\")\n"
87088718
]
8719+
},
8720+
{
8721+
"cell_type": "code",
8722+
"execution_count": 119,
8723+
"metadata": {},
8724+
"outputs": [
8725+
{
8726+
"name": "stdout",
8727+
"output_type": "stream",
8728+
"text": [
8729+
"101\n",
8730+
"['101', '10', '0', '11', '1']\n"
8731+
]
8732+
}
8733+
],
8734+
"source": [
8735+
"# https://leetcode.com/problems/find-the-original-array-of-prefix-xor/\n",
8736+
"\n",
8737+
"pref = [5,2,0,3,1]\n",
8738+
"\n",
8739+
"# c = int(a,2)+int(b,2)\n",
8740+
"\n",
8741+
"# print(bin(5).replace(\"0b\",\"\"))\n",
8742+
"\n",
8743+
"# pref_bin = [bin(i).replace(\"0b\",\"\") for i in pref]\n",
8744+
"# print(pref_bin)\n",
8745+
"\n"
8746+
]
87098747
}
87108748
],
87118749
"metadata": {

0 commit comments

Comments
 (0)