Skip to content

Instantly share code, notes, and snippets.

View azhrzafar's full-sized avatar
👀
looking at your code

Azhar Zafar azhrzafar

👀
looking at your code
  • KeepsLog
  • Kasur, Pakistan
View GitHub Profile
@azhrzafar
azhrzafar / codility_solutions.txt
Created June 30, 2020 07:04 — forked from lalkmim/codility_solutions.txt
Codility Solutions in JavaScript
Lesson 1 - Iterations
- BinaryGap - https://codility.com/demo/results/trainingU2FQPQ-7Y4/
Lesson 2 - Arrays
- OddOccurrencesInArray - https://codility.com/demo/results/trainingFN5RVT-XQ4/
- CyclicRotation - https://codility.com/demo/results/trainingSH2W5R-RP5/
Lesson 3 - Time Complexity
- FrogJmp - https://codility.com/demo/results/training6KKWUD-BXJ/
- PermMissingElem - https://codility.com/demo/results/training58W4YJ-VHA/
const HelloWorld = (props) => <h1>Hello World</h1>;
function HelloWorld(props) {
return <h1>Hello World</h1>;
}
class HelloWorld extends React.Component {
constructor(props) {
super(props);
}
render() {
return <h1>Hello World</h1>;
}
}
var HelloWorld = React.createClass({
render: function () {
return <h1>Hello World</h1>;
}
});