Home
WANG Zhen
Cancel

House Robber

The Problem Setting Input: nums = [1,2,3,1] Output: 4 Explanation: Rob house 1 (money = 1) and then rob house 3 (money = 3). Total amount you can rob = 1 + 3 = 4. dp For the k-th array, we can o...

Median of Two Sorted Arrays

The Problem Setting Brute Force List1: 1 2 3 5 7 12 14 length m List2: 4 9 10 length n 比如说 插入 4 到List1以后, 下一个element 9只会比较 1 2 3 4 5 7 12 14 后面一个 从 5 开始比 所以 所有的list2 都插入 list1以后 所有的list1的eleme...

Longest Palindromic Substring

The Problem Setting A palindrome is a string which reads the same in both directions. For example, S = “aba” is a palindrome, S = “abc” is not. Example: Input: s = "babad" Output: "bab" or "aba...

Container With Most Water

Shor-s-algorithm

COMP3710 Course Project Source Code The workflow is as follows: This project simulates the fundamental flow of Shor’s algorithm in factorization problems with Qsharp.

Markov-Chains-Analysis

COMP4600 Course Project This is the demo repo for my personal course projects. This is a theoretical analysis project without any code implementation. View at Source Report

Intercourse Pathing

COMP3600 Course Project Source Code A software focuses on discovering connectivity between regions along with multiple fun features. Getting Started These instructions will get you a copy of the...

Fact-aware Language Modeling

Source Code This is the Honor Project(COMP4550) for Zhen Wang. The project is supervised by Dr. Omran and Prof. Taylor. The project aims to research the possibility of utilising knowlegdge graph(K...

Agamemnon

COMP1140 Course Project Source Code Note this is the import of the past course project, by auther Tony Yan, Zhen Wang and Jingyang You. After configure, the game interface will show as below: N...