Skip to content

Instantly share code, notes, and snippets.

View Divinemonk's full-sized avatar
:electron:
H4cK1nG M1nDs & Br41Ns !

HrDivinemonk Divinemonk

:electron:
H4cK1nG M1nDs & Br41Ns !
View GitHub Profile
@Divinemonk
Divinemonk / reducing-time-complexity-python.md
Created April 16, 2023 18:33
Algorithmic Techniques for Reducing Time Complexity(TC) of a python code

Algorithmic Techniques for Reducing Time Complexity(TC) of a python code

In order to reduce time complexity of a code, it's very much necessary to reduce the usage of loops whenever and wherever possible.

I'll divide your code's logic part into 5 sections and suggest optimization in each one of them.



Section 1 - Declaration of Variables and taking input

@Divinemonk
Divinemonk / ethical-hacker-roadmap.md
Created April 16, 2023 18:28
Ethical Hacker Roadmap

Ethical Hacker Roadmap

Becoming an ethical hacker requires a significant amount of time, effort, and dedication, as well as a solid understanding of computer systems and security. Here is a basic roadmap and sample time table for becoming an ethical hacker:

1. Learn the fundamentals of computer systems and security

  • Set aside time each day or each week to study and practice the basics of computer systems and security, including computer architecture, operating systems, and network protocols.
  • Read books and online articles, watch video tutorials, and take online courses to build your knowledge in these areas.
@Divinemonk
Divinemonk / brainfuck-basics.md
Last active April 16, 2023 18:29 — forked from roachhd/README.md
Basics of BrainFuck

Basics of BrainFuck

INTRODUCTION

Brainfuck is probably the craziest language i have ever had the pleasure of coming across. And, yes, there are quite a few tutorials that you will find on google about the language and how to program in it, but i am writing this one as most of them that you will find seem to only cover just the basics of using the operators.

Brainfuck, language itself, is a Turing-complete language created by Urban Müller. The language only consists of 8 operators, yet with the 8 operators, <>+-[],. you are capable of writing almost any program you can think of.

To write programs in brainfuck, i would suggest you get a few things first.