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

Coding

Home » 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

  • 10 MongoDB performance tuning tips for large scale applications
  • Python utility scripts that can automate various tasks
  • Setting up a MongoDB environment: A step-by-step guide for installing MongoDB on your local machine
  • 5 Different ways to compress image using python script.
  • Make rest api call using https node module.

Menu

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

Buy Me a Coffee

Copyright 2021 - Singhak
pixel