Skip to content
Singhak
  • Home
  • Tech
    • Javascript
    • Python
    • QnA
    • TipsnTricks
    • Automation
  • Blog
  • Submit Guest Post
  • About me
    • Contact Us
    • Privacy Policy
  • Toggle website search
Menu Close
  • Home
  • Tech
    • Javascript
    • Python
    • QnA
    • TipsnTricks
    • Automation
  • Blog
  • Submit Guest Post
  • About me
    • Contact Us
    • Privacy Policy
  • Toggle website search

coding

  1. Home>
  2. coding
Read more about the article Binary to Decimal and Decimal to Binary in JavaScript
Coding / Javascript / Tech

Binary to Decimal and Decimal to Binary in JavaScript

Decimal to Binary: /* Convert 13 to binary: Division by 2 Quotient Remainder Bit # ---------------------------------------- 13/2 6 1 0 6/2 3 0 1 3/2 1 1 2 1/2 0…

0 Comments
14th March 2022
Coding

Coding Challenge – Celebrity Problem.

Celebrity is the person to whom everyone know but he do not know any person. This problem one of the programing problem that asked in companies Problem Statement: You are…

0 Comments
27th September 2021
Read more about the article Write program to check Array is a permutation of numbers from 1 to N
Coding / Python

Write program to check Array is a permutation of numbers from 1 to N

Problem statement: You have an array of number like [1,3,4,6,8] we need to find that these numbers are permutation of number or not, considering all numbers in an array. example:…

0 Comments
13th May 2021
Read more about the article The nearest greatest element of an array from right in python
Coding / Python

The nearest greatest element of an array from right in python

Stack implementation: class Stack: def pop(self): return self.items.pop() def __init__(self): self.items = [] def push(self, item): return self.items.append(item) def size(self): return len(self.items) def peek(self): return self.items[len(self.items)-1] def isEmpty(self): return len(self.items)…

0 Comments
22nd March 2021

Buy Me a Coffee

Follow Us

Join Telegram Channel

Categories

Archives

Subscribe

Recent Posts

  • 🚀 Understanding call(), bind(), and apply() Like a 5th Grader!
  • dirname and filename in nodejs es6 module
  • An import declaration can only be used at the top level of a module
  • 🚀 export vs export default in JavaScript Modules
  • 🚀 Understanding Prototype in JavaScript

Menu

  • Home
  • Submit Post
  • Privacy Policy
  • About me
  • Guest Post Submission
  • Contact Us
Support Me

Buy Me a Coffee

Copyright 2021 - Singhak
pixel