mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
Added notebook solving the following: HackerRank Maximizing XOR problem..
This commit is contained in:
parent
666fdd77a8
commit
73d265525b
|
@ -42,6 +42,7 @@ Continually updated IPython Notebooks containing coding problems and solutions (
|
||||||
## Hacker Rank
|
## Hacker Rank
|
||||||
|
|
||||||
* [Utopian Tree](http://nbviewer.ipython.org/github/donnemartin/algorithms-data-structures/blob/master/hacker-rank/utopian-tree.ipynb)
|
* [Utopian Tree](http://nbviewer.ipython.org/github/donnemartin/algorithms-data-structures/blob/master/hacker-rank/utopian-tree.ipynb)
|
||||||
|
* [Maximizing XOR](http://nbviewer.ipython.org/github/donnemartin/algorithms-data-structures/blob/master/hacker-rank/maximizing-xor.ipynb)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
85
hacker-rank/maximizing-xor.ipynb
Normal file
85
hacker-rank/maximizing-xor.ipynb
Normal file
|
@ -0,0 +1,85 @@
|
||||||
|
{
|
||||||
|
"cells": [
|
||||||
|
{
|
||||||
|
"cell_type": "markdown",
|
||||||
|
"metadata": {},
|
||||||
|
"source": [
|
||||||
|
"## Problem: Maximizing XOR\n",
|
||||||
|
"\n",
|
||||||
|
"From HackerRank: https://www.hackerrank.com/challenges/maximizing-xor\n",
|
||||||
|
"\n",
|
||||||
|
"* [Algorithm](#Algorithm)\n",
|
||||||
|
"* [Code](#Code)"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cell_type": "markdown",
|
||||||
|
"metadata": {},
|
||||||
|
"source": [
|
||||||
|
"## Algorithm\n",
|
||||||
|
"\n",
|
||||||
|
"* Set max to 0\n",
|
||||||
|
"* For i in the range (lower, upper) inclusive\n",
|
||||||
|
" * For j in the range (lower, upper) inclusive\n",
|
||||||
|
" * Compare i ^ j with max, update max if needed\n",
|
||||||
|
"* return max\n",
|
||||||
|
"\n",
|
||||||
|
"Complexity:\n",
|
||||||
|
"* Time: O(n^2)\n",
|
||||||
|
"* Space: O(1)"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cell_type": "markdown",
|
||||||
|
"metadata": {},
|
||||||
|
"source": [
|
||||||
|
"## Code"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cell_type": "code",
|
||||||
|
"execution_count": null,
|
||||||
|
"metadata": {
|
||||||
|
"collapsed": false
|
||||||
|
},
|
||||||
|
"outputs": [],
|
||||||
|
"source": [
|
||||||
|
"def max_xor(lower, upper):\n",
|
||||||
|
" result = 0\n",
|
||||||
|
" for l in xrange(lower, upper + 1):\n",
|
||||||
|
" for u in xrange(lower, upper + 1):\n",
|
||||||
|
" curr = l ^ u\n",
|
||||||
|
" if result < curr:\n",
|
||||||
|
" result = curr\n",
|
||||||
|
" return result\n",
|
||||||
|
"\n",
|
||||||
|
"lower = int(raw_input());\n",
|
||||||
|
"upper = int(raw_input());\n",
|
||||||
|
"\n",
|
||||||
|
"result = max_xor(lower, upper);\n",
|
||||||
|
"print(result)"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"metadata": {
|
||||||
|
"kernelspec": {
|
||||||
|
"display_name": "Python 2",
|
||||||
|
"language": "python",
|
||||||
|
"name": "python2"
|
||||||
|
},
|
||||||
|
"language_info": {
|
||||||
|
"codemirror_mode": {
|
||||||
|
"name": "ipython",
|
||||||
|
"version": 2
|
||||||
|
},
|
||||||
|
"file_extension": ".py",
|
||||||
|
"mimetype": "text/x-python",
|
||||||
|
"name": "python",
|
||||||
|
"nbconvert_exporter": "python",
|
||||||
|
"pygments_lexer": "ipython2",
|
||||||
|
"version": "2.7.9"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nbformat": 4,
|
||||||
|
"nbformat_minor": 0
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user