top of page
Search
Java Switch Case
Ever needed to write a million if-else statements to the point where your brain is breaking and you're about an inch away from throwing...

DeTech Theory
Aug 13, 20221 min read
Java Selection Sort Algorithm for Arrays
We previously discussed how to sort a Java array using Bubble Sort however that is only one of many sorting algorithms for arrays....

DeTech Theory
Aug 9, 20221 min read
Draw a heart ❤️ with Python Turtle
Are you looking for a sweet but easy programming hack to impress your loved one? DeTech Theory’s got you covered - follow these steps to...

DeTech Theory
Aug 8, 20221 min read
Interview Tip: HTTP Request Methods
HTTP methods are used by a client to communicate to a server. There are a lot of these methods, but here are the most common methods...

DeTech Theory
Aug 8, 20221 min read
Git Merging
Git Branch merging is another essential tool for Git version control where we can merge the contents that were being worked on and tested...

DeTech Theory
Jul 26, 20221 min read


Reversing a Linked List
To reverse a linked list in Python with O(n) time complexity and O(1) space complexity, follow the following piece of code! class Node: ...

DeTech Theory
Jul 26, 20221 min read
Java Bubble Sort Algorithm for Arrays
In Java programming, Arrays are an essential data structure, but we often run into situations where we need to organize the elements....

DeTech Theory
Jul 24, 20221 min read
Essential Data structures for Coding Interviews
If you’re preparing for a coding interview, knowing different data structures and their Big(O) times are essential. Here’s Part 1 of the...

DeTech Theory
Jul 19, 20222 min read
Useful External Java Libraries
Java has a wealth of pre-written libraries that you can easily implement into your own code with just a couple of lines. There are a...

DeTech Theory
Jul 18, 20222 min read
Learning git branching
Git branching is an essential part of software development to prevent unstable code from being in the main line of development. Whenever...

DeTech Theory
Jul 14, 20221 min read
Create a mini drawing board using Python Turtle
Have you ever wondered if you could create a drawing canvas using code? Python Turtle lets you do just that! Python Turtle is a...

DeTech Theory
Jul 14, 20221 min read
Tip: Importing External Libraries in Java
Interested in using external classes and methods? Don't forget to import the necessary external libraries! Let's use the ArrayList data...

DeTech Theory
Jul 12, 20221 min read
Tip: Easy Repeated Strings in Python
If you've ever wondered if there was an easy way to do repeated strings in Python, you've come to the right place. For a string variable...

DeTech Theory
Jul 7, 20221 min read
bottom of page