Skip to content

Instantly share code, notes, and snippets.

View krishnadey30's full-sized avatar

Krishna Kumar Dey krishnadey30

View GitHub Profile
@krishnadey30
krishnadey30 / GSoC_2019UnitTestFramework.md
Last active January 6, 2022 05:59
GSoC 2019 Unit Test Framework
global:
image:
tag: 8.0.4
identity:
auth:
publicIssuerUrl: "http://camundakeycloak.<domain>/auth/realms/camunda-platform"
operate:
redirectUrl: "http://operate.<domain>"
optimize:
redirectUrl: "http://optimize.<domain>"

Command

  • apropos

    apropos "remove files"
@krishnadey30
krishnadey30 / amazonFinal.md
Last active January 21, 2024 09:40
Amazon Final Interview Question List
  • Two Sum (#1)
  • Median of Two Sorted Arrays * (#4)
  • Longest Palindromic Substring (#5)
  • String to Integer (atoi) (#8)
  • Integer to Roman (#12)
  • Roman to Integer (#13)
  • Valid Parentheses (#20)
  • Merge K Sorted Lists (#23)
  • Valid Sudoku (#36)
  • Combination Sum (#39)

C++ OOPS Concepts

The main aim of OOP is to bind together the data and the functions that operate on them so that no other part of the code can access this data except that function.

Characteristics of an Object Oriented Programming language

img