This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Bitmap Holes | |
* Have the function BitmapHoles(strArr) take the array of strings stored in strArr, | |
* which will be a 2D matrix of 0 and 1's, and determine how many holes, or contiguous regions of 0's, | |
* exist in the matrix. A contiguous region is one where there is a connected group of 0's going | |
* in one or more of four directions: up, down, left, or right. | |
* | |
* For example: if strArr is ["10111", "10101", "11101", "11111"], then this looks like the following matrix: | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div>Data: {{ data }}</div> | |
<button @mousedown="method"></button> | |
</template> | |
<script lang="ts" setup> | |
import { computed, ref } from 'vue' | |
const test = ref(100) | |
const data = computed(() => test.value + 200) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Layout": { | |
"defaultSubCategory": "Basic", | |
"subcategories": { | |
"Basic": { | |
"Columns": { | |
"variants": { | |
"default": { | |
"1 ~ 6": { | |
"columns-1": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<ul id="bandList"></ul> | |
</div> |
OlderNewer